home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 4 / The Arsenal Files 4 (Arsenal Computer).ISO / casm / au116-as.exe / MAKEFILE < prev    next >
Text File  |  1994-12-15  |  990b  |  34 lines

  1. # BCC makefile
  2.  
  3. INCLUDE_PATH = i:\borlandc\include
  4. CC = bcc -ml -c -O1 -d -Z -H -Y -v -I$(INCLUDE_PATH)
  5.  
  6. # bcc = Borland's C++ command line compiler
  7. # -ml = Large Model
  8. # -c  = Compile only
  9. # -O1 = Smallest size
  10. # -d  = Collapse reused literal strings
  11. # -Z  - Suppress register reloads
  12. # -H  = Use precompiled headers
  13. # -Y  = Use Overlays
  14. # -v  = Include symbolic information in the .objs
  15. # -I  = Include file path
  16.  
  17. LINKER = tlink /c /x
  18.  
  19. # /c  = Case Sensitive
  20. # /x  = No map
  21.  
  22. LIBS = ibmdos\ibmdos.lib util\util.lib
  23.  
  24. .cpp.obj:
  25.    $(CC) {$*.cpp }
  26.  
  27. au.exe: $(LIBS) add.obj     au.obj      compare.obj  convert.obj  delete.obj  \
  28.                 dir.obj     dupes.obj   find.obj     fixcr.obj    header.obj  \
  29.                 orphan.obj  patch.obj   redate.obj   scan.obj     size.obj    \
  30.                 sweep.obj   test.obj    unarc.obj    version.obj  view.obj    \
  31.                 whatis.obj  main.obj    globals.obj  ctrl_brk.obj
  32.    $(LINKER) @objfiles
  33.  
  34.